runtime.schedt.lastpoll (field)
10 uses
runtime (current package)
proc.go#L756: sched.lastpoll.Store(nanotime())
proc.go#L2709: if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
proc.go#L2977: if netpollinited() && netpollWaiters.Load() > 0 && sched.lastpoll.Load() != 0 {
proc.go#L3169: if netpollinited() && (netpollWaiters.Load() > 0 || pollUntil != 0) && sched.lastpoll.Swap(0) != 0 {
proc.go#L3195: sched.lastpoll.Store(now)
proc.go#L3245: if netpollinited() && netpollWaiters.Load() > 0 && sched.lastpoll.Load() != 0 {
proc.go#L3435: if sched.lastpoll.Load() == 0 {
proc.go#L5596: lastpoll := sched.lastpoll.Load()
proc.go#L5598: sched.lastpoll.CompareAndSwap(lastpoll, now)
runtime2.go#L776: lastpoll atomic.Int64 // time of last network poll, 0 if currently polling
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |